home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM / IN200103.ISO / Mac / iView / iviewpro.hqx / iView mediaPro ƒ / iView mediaPro v1.0 / Script Examples / Label Class < prev    next >
Encoding:
Text File  |  2000-12-24  |  604 b   |  29 lines

  1. tell application "iView mediaPro"
  2.     
  3.     tell window 1
  4.         
  5.         (* methods for accessing labels *)
  6.         
  7.         -- get the name of label 1
  8.         -- get the name of label after label 1
  9.         -- get the name of every label
  10.         -- get the name of labels 1 through 4
  11.         -- set the name of label 3 to "mega"
  12.         
  13.         (* get/set label properties *)
  14.         
  15.         -- get the color of label 1
  16.         -- set the color of label 1 to {30069, 30069, 6168}
  17.         
  18.         
  19.         (* function samples *)
  20.         
  21.         -- exists (labels whose name contains "2")
  22.         
  23.     end tell
  24.     
  25.     (* more samples *)
  26.     -- get the name of every label of every window
  27.     -- count labels of every window
  28.     
  29. end tell